drum sorting - перевод на арабский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

drum sorting - перевод на арабский

TYPE OF SORTING ALGORITHM THAT WORKS BY COMPARING PAIRS OF ELEMENTS
Comparison sorting
  • [[Quicksort]] in action on a list of numbers. The horizontal lines are pivot values.

drum sorting      
تصنيف أسطواني
Drum storage         
  • Drum memory from the [[BESK]] computer, Sweden's first binary computer, which made its debut in 1953
MAGNETIC DATA STORAGE DEVICE
Magnetic drum; Memory drum; Magnetic drum memory; Drum storage
تخزين على أسطوانات ممغنطة
magnetic drum         
  • Drum memory from the [[BESK]] computer, Sweden's first binary computer, which made its debut in 1953
MAGNETIC DATA STORAGE DEVICE
Magnetic drum; Memory drum; Magnetic drum memory; Drum storage
أسطوانة ممغنطة

Определение

drum kit
¦ noun a set of drums, cymbals, and other percussion instruments.

Википедия

Comparison sort

A comparison sort is a type of sorting algorithm that only reads the list elements through a single abstract comparison operation (often a "less than or equal to" operator or a three-way comparison) that determines which of two elements should occur first in the final sorted list. The only requirement is that the operator forms a total preorder over the data, with:

  1. if ab and bc then ac (transitivity)
  2. for all a and b, ab or ba (connexity).

It is possible that both ab and ba; in this case either may come first in the sorted list. In a stable sort, the input order determines the sorted order in this case.

A metaphor for thinking about comparison sorts is that someone has a set of unlabelled weights and a balance scale. Their goal is to line up the weights in order by their weight without any information except that obtained by placing two weights on the scale and seeing which one is heavier (or if they weigh the same).